-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Automated SDK generation @ aws-cloudformation-user-guide 19dc52cd3f20…
…07d6d268b65b739ffb5ebf8c1e76 (#1564) *Automated PR* New resources: securityhub.ConfigurationPolicy securityhub.FindingAggregator securityhub.OrganizationConfiguration securityhub.PolicyAssociation New functions: securityhub.getConfigurationPolicy securityhub.getFindingAggregator securityhub.getOrganizationConfiguration securityhub.getPolicyAssociation
- Loading branch information
1 parent
1e76705
commit 846e52f
Showing
118 changed files
with
13,634 additions
and
126 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,115 +1,141 @@ | ||
{ | ||
"tagging" : { | ||
"taggable" : true, | ||
"tagOnCreate" : true, | ||
"tagUpdatable" : true, | ||
"tagProperty" : "/properties/Tags", | ||
"cloudFormationSystemTags" : false | ||
}, | ||
"typeName" : "AWS::EKS::Addon", | ||
"readOnlyProperties" : [ "/properties/Arn" ], | ||
"description" : "Resource Schema for AWS::EKS::Addon", | ||
"createOnlyProperties" : [ "/properties/ClusterName", "/properties/AddonName" ], | ||
"primaryIdentifier" : [ "/properties/ClusterName", "/properties/AddonName" ], | ||
"required" : [ "ClusterName", "AddonName" ], | ||
"sourceUrl" : "https://github.com/aws-cloudformation/aws-cloudformation-resource-providers-eks.git", | ||
"handlers" : { | ||
"read" : { | ||
"permissions" : [ "eks:DescribeAddon" ] | ||
}, | ||
"create" : { | ||
"permissions" : [ "eks:CreateAddon", "eks:DescribeAddon", "eks:TagResource", "iam:PassRole", "iam:GetRole", "eks:CreatePodIdentityAssociation" ] | ||
}, | ||
"update" : { | ||
"permissions" : [ "iam:PassRole", "iam:GetRole", "eks:UpdateAddon", "eks:DescribeAddon", "eks:DescribeUpdate", "eks:ListTagsForResource", "eks:TagResource", "eks:UntagResource", "eks:CreatePodIdentityAssociation", "eks:DeletePodIdentityAssociation" ] | ||
}, | ||
"list" : { | ||
"permissions" : [ "eks:ListAddons" ], | ||
"handlerSchema" : { | ||
"properties" : { | ||
"ClusterName" : { | ||
"$ref" : "resource-schema.json#/properties/ClusterName" | ||
} | ||
}, | ||
"required" : [ "ClusterName" ] | ||
} | ||
}, | ||
"delete" : { | ||
"permissions" : [ "eks:DeleteAddon", "eks:DescribeAddon", "eks:DeletePodIdentityAssociation" ] | ||
} | ||
}, | ||
"writeOnlyProperties" : [ "/properties/ResolveConflicts", "/properties/PreserveOnDelete" ], | ||
"additionalProperties" : false, | ||
"definitions" : { | ||
"Tag" : { | ||
"description" : "A key-value pair to associate with a resource.", | ||
"additionalProperties" : false, | ||
"type" : "object", | ||
"additionalProperties" : false, | ||
"properties" : { | ||
"Value" : { | ||
"Key" : { | ||
"type" : "string", | ||
"description" : "The key name of the tag. You can specify a value that is 1 to 127 Unicode characters in length and cannot be prefixed with aws:. You can use any of the following characters: the set of Unicode letters, digits, whitespace, _, ., /, =, +, and -. ", | ||
"minLength" : 1, | ||
"description" : "The value for the tag. You can specify a value that is 1 to 255 Unicode characters in length and cannot be prefixed with aws:. You can use any of the following characters: the set of Unicode letters, digits, whitespace, _, ., /, =, +, and -. ", | ||
"maxLength" : 127 | ||
}, | ||
"Value" : { | ||
"type" : "string", | ||
"description" : "The value for the tag. You can specify a value that is 1 to 255 Unicode characters in length and cannot be prefixed with aws:. You can use any of the following characters: the set of Unicode letters, digits, whitespace, _, ., /, =, +, and -. ", | ||
"minLength" : 1, | ||
"maxLength" : 255 | ||
} | ||
}, | ||
"required" : [ "Key", "Value" ] | ||
}, | ||
"PodIdentityAssociation" : { | ||
"description" : "A pod identity to associate with an add-on.", | ||
"type" : "object", | ||
"additionalProperties" : false, | ||
"properties" : { | ||
"ServiceAccount" : { | ||
"type" : "string", | ||
"description" : "The Kubernetes service account that the pod identity association is created for." | ||
}, | ||
"Key" : { | ||
"minLength" : 1, | ||
"description" : "The key name of the tag. You can specify a value that is 1 to 127 Unicode characters in length and cannot be prefixed with aws:. You can use any of the following characters: the set of Unicode letters, digits, whitespace, _, ., /, =, +, and -. ", | ||
"RoleArn" : { | ||
"type" : "string", | ||
"maxLength" : 127 | ||
"pattern" : "^arn:aws(-cn|-us-gov|-iso(-[a-z])?)?:iam::\\d{12}:(role)\\/*", | ||
"description" : "The IAM role ARN that the pod identity association is created for." | ||
} | ||
}, | ||
"required" : [ "Key", "Value" ] | ||
"required" : [ "ServiceAccount", "RoleArn" ] | ||
} | ||
}, | ||
"properties" : { | ||
"ClusterName" : { | ||
"description" : "Name of Cluster", | ||
"type" : "string", | ||
"minLength" : 1 | ||
}, | ||
"AddonName" : { | ||
"description" : "Name of Addon", | ||
"type" : "string", | ||
"minLength" : 1 | ||
}, | ||
"AddonVersion" : { | ||
"description" : "Version of Addon", | ||
"type" : "string", | ||
"minLength" : 1 | ||
}, | ||
"PreserveOnDelete" : { | ||
"description" : "PreserveOnDelete parameter value", | ||
"type" : "boolean" | ||
}, | ||
"AddonVersion" : { | ||
"ResolveConflicts" : { | ||
"description" : "Resolve parameter value conflicts", | ||
"type" : "string", | ||
"minLength" : 1, | ||
"description" : "Version of Addon", | ||
"type" : "string" | ||
"enum" : [ "NONE", "OVERWRITE", "PRESERVE" ] | ||
}, | ||
"ServiceAccountRoleArn" : { | ||
"minLength" : 1, | ||
"description" : "IAM role to bind to the add-on's service account", | ||
"type" : "string" | ||
"type" : "string", | ||
"minLength" : 1 | ||
}, | ||
"ClusterName" : { | ||
"minLength" : 1, | ||
"description" : "Name of Cluster", | ||
"type" : "string" | ||
"PodIdentityAssociations" : { | ||
"description" : "An array of pod identities to apply to this add-on.", | ||
"type" : "array", | ||
"uniqueItems" : true, | ||
"insertionOrder" : false, | ||
"items" : { | ||
"$ref" : "#/definitions/PodIdentityAssociation" | ||
} | ||
}, | ||
"AddonName" : { | ||
"minLength" : 1, | ||
"description" : "Name of Addon", | ||
"type" : "string" | ||
"ConfigurationValues" : { | ||
"description" : "The configuration values to use with the add-on", | ||
"type" : "string", | ||
"minLength" : 1 | ||
}, | ||
"Arn" : { | ||
"description" : "Amazon Resource Name (ARN) of the add-on", | ||
"type" : "string" | ||
}, | ||
"ResolveConflicts" : { | ||
"minLength" : 1, | ||
"description" : "Resolve parameter value conflicts", | ||
"type" : "string", | ||
"enum" : [ "NONE", "OVERWRITE", "PRESERVE" ] | ||
}, | ||
"Tags" : { | ||
"uniqueItems" : true, | ||
"description" : "An array of key-value pairs to apply to this resource.", | ||
"insertionOrder" : false, | ||
"type" : "array", | ||
"uniqueItems" : true, | ||
"insertionOrder" : false, | ||
"items" : { | ||
"$ref" : "#/definitions/Tag" | ||
} | ||
} | ||
}, | ||
"tagging" : { | ||
"taggable" : true, | ||
"tagOnCreate" : true, | ||
"tagUpdatable" : true, | ||
"cloudFormationSystemTags" : false, | ||
"tagProperty" : "/properties/Tags" | ||
}, | ||
"additionalProperties" : false, | ||
"required" : [ "ClusterName", "AddonName" ], | ||
"primaryIdentifier" : [ "/properties/ClusterName", "/properties/AddonName" ], | ||
"createOnlyProperties" : [ "/properties/ClusterName", "/properties/AddonName" ], | ||
"readOnlyProperties" : [ "/properties/Arn" ], | ||
"writeOnlyProperties" : [ "/properties/ResolveConflicts", "/properties/PreserveOnDelete", "/properties/PodIdentityAssociations" ], | ||
"handlers" : { | ||
"create" : { | ||
"permissions" : [ "eks:CreateAddon", "eks:DescribeAddon", "eks:TagResource", "iam:PassRole", "iam:GetRole", "eks:CreatePodIdentityAssociation" ] | ||
}, | ||
"ConfigurationValues" : { | ||
"minLength" : 1, | ||
"description" : "The configuration values to use with the add-on", | ||
"type" : "string" | ||
"read" : { | ||
"permissions" : [ "eks:DescribeAddon" ] | ||
}, | ||
"delete" : { | ||
"permissions" : [ "eks:DeleteAddon", "eks:DescribeAddon", "eks:DeletePodIdentityAssociation" ] | ||
}, | ||
"list" : { | ||
"handlerSchema" : { | ||
"properties" : { | ||
"ClusterName" : { | ||
"$ref" : "resource-schema.json#/properties/ClusterName" | ||
} | ||
}, | ||
"required" : [ "ClusterName" ] | ||
}, | ||
"permissions" : [ "eks:ListAddons" ] | ||
}, | ||
"update" : { | ||
"permissions" : [ "iam:PassRole", "iam:GetRole", "eks:UpdateAddon", "eks:DescribeAddon", "eks:DescribeUpdate", "eks:ListTagsForResource", "eks:TagResource", "eks:UntagResource", "eks:CreatePodIdentityAssociation", "eks:DeletePodIdentityAssociation" ] | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.