-
Notifications
You must be signed in to change notification settings - Fork 16
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 (#1939) Automated SDK generation @ aws-cloudformation-user-guide 19dc52cd3f2007d6d268b65b739ffb5ebf8c1e76 New resources: * appconfig.Deployment New functions: * appconfig.getDeployment Notes: unfortunately newly introduced AnycastIpList does not yet work as expected and is excluded; this is tracked in #1946 --------- Co-authored-by: Anton Tayanovskyy <[email protected]>
- Loading branch information
1 parent
58ada85
commit db60834
Showing
466 changed files
with
13,913 additions
and
5,538 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
66b7511f59401ec2374398c60cfe4f31e35bb6e6 | ||
318b29ecbc1b8ffa59ebb3fab681febec2caa7ae |
126 changes: 88 additions & 38 deletions
126
aws-cloudformation-schema/aws-appconfig-deployment.json
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,78 +1,128 @@ | ||
{ | ||
"tagging" : { | ||
"permissions" : [ "appconfig:TagResource", "appconfig:UntagResource", "appconfig:ListTagsForResource" ], | ||
"taggable" : true, | ||
"tagOnCreate" : true, | ||
"tagUpdatable" : false, | ||
"tagProperty" : "/properties/Tags", | ||
"cloudFormationSystemTags" : true | ||
}, | ||
"typeName" : "AWS::AppConfig::Deployment", | ||
"readOnlyProperties" : [ "/properties/DeploymentNumber" ], | ||
"description" : "Resource Type definition for AWS::AppConfig::Deployment", | ||
"createOnlyProperties" : [ "/properties/ApplicationId", "/properties/ConfigurationProfileId", "/properties/DeploymentStrategyId", "/properties/EnvironmentId", "/properties/Description", "/properties/ConfigurationVersion", "/properties/KmsKeyIdentifier", "/properties/DynamicExtensionParameters", "/properties/Tags" ], | ||
"primaryIdentifier" : [ "/properties/ApplicationId", "/properties/EnvironmentId", "/properties/DeploymentNumber" ], | ||
"required" : [ "ApplicationId", "ConfigurationProfileId", "DeploymentStrategyId", "EnvironmentId", "ConfigurationVersion" ], | ||
"sourceUrl" : "https://github.com/aws-cloudformation/aws-cloudformation-rpdk.git", | ||
"handlers" : { | ||
"read" : { | ||
"permissions" : [ "appconfig:GetDeployment", "appconfig:ListTagsForResource" ] | ||
}, | ||
"create" : { | ||
"permissions" : [ "appconfig:StartDeployment", "appconfig:GetDeployment", "appconfig:TagResource", "appconfig:ListTagsForResource", "kms:GenerateDataKey" ], | ||
"timeoutInMinutes" : 1445 | ||
}, | ||
"list" : { | ||
"permissions" : [ "appconfig:ListDeployments" ], | ||
"handlerSchema" : { | ||
"properties" : { | ||
"EnvironmentId" : { | ||
"$ref" : "resource-schema.json#/properties/EnvironmentId" | ||
}, | ||
"ApplicationId" : { | ||
"$ref" : "resource-schema.json#/properties/ApplicationId" | ||
} | ||
}, | ||
"required" : [ "ApplicationId", "EnvironmentId" ] | ||
} | ||
}, | ||
"delete" : { | ||
"permissions" : [ "appconfig:StopDeployment" ] | ||
} | ||
}, | ||
"writeOnlyProperties" : [ "/properties/DynamicExtensionParameters" ], | ||
"additionalProperties" : false, | ||
"definitions" : { | ||
"Tag" : { | ||
"description" : "Metadata to assign to the deployment. Tags help organize and categorize your AWS AppConfig resources. Each tag consists of a key and an optional value, both of which you define.", | ||
"additionalProperties" : false, | ||
"type" : "object", | ||
"properties" : { | ||
"Value" : { | ||
"description" : "The tag value can be up to 256 characters.", | ||
"type" : "string" | ||
}, | ||
"Key" : { | ||
"description" : "The key-value string map. The valid character set is [a-zA-Z1-9+-=._:/]. The tag key can be up to 128 characters and must not start with aws:.", | ||
"type" : "string" | ||
} | ||
} | ||
}, | ||
"DynamicExtensionParameters" : { | ||
"additionalProperties" : false, | ||
"type" : "object", | ||
"properties" : { | ||
"ParameterValue" : { | ||
"type" : "string" | ||
}, | ||
"ExtensionReference" : { | ||
"type" : "string" | ||
}, | ||
"ParameterName" : { | ||
"type" : "string" | ||
} | ||
} | ||
} | ||
}, | ||
"properties" : { | ||
"DeploymentStrategyId" : { | ||
"description" : "The deployment strategy ID.", | ||
"type" : "string" | ||
}, | ||
"ConfigurationProfileId" : { | ||
"description" : "The configuration profile ID.", | ||
"type" : "string" | ||
}, | ||
"EnvironmentId" : { | ||
"description" : "The environment ID.", | ||
"type" : "string" | ||
}, | ||
"KmsKeyIdentifier" : { | ||
"pattern" : "^[\\da-f]{8}-[\\da-f]{4}-[\\da-f]{4}-[\\da-f]{4}-[\\da-f]{12}|alias/[a-zA-Z0-9/_-]{1,250}|arn:aws[a-zA-Z-]*:kms:[a-z]{2}(-gov|-iso(b?))?-[a-z]+-\\d{1}:\\d{12}:(key/[0-9a-f-]{36}|alias/[a-zA-Z0-9/_-]{1,250})$", | ||
"description" : "The AWS Key Management Service key identifier (key ID, key alias, or key ARN) provided when the resource was created or updated.", | ||
"type" : "string" | ||
}, | ||
"Description" : { | ||
"description" : "A description of the deployment.", | ||
"type" : "string" | ||
}, | ||
"ConfigurationVersion" : { | ||
"description" : "The configuration version to deploy. If deploying an AWS AppConfig hosted configuration version, you can specify either the version number or version label. For all other configurations, you must specify the version number.", | ||
"type" : "string" | ||
}, | ||
"Id" : { | ||
"DeploymentNumber" : { | ||
"description" : "The sequence number of the deployment.", | ||
"type" : "string" | ||
}, | ||
"ApplicationId" : { | ||
"description" : "The application ID.", | ||
"type" : "string" | ||
}, | ||
"DynamicExtensionParameters" : { | ||
"type" : "array", | ||
"uniqueItems" : false, | ||
"type" : "array", | ||
"items" : { | ||
"$ref" : "#/definitions/DynamicExtensionParameters" | ||
} | ||
}, | ||
"Tags" : { | ||
"uniqueItems" : true, | ||
"description" : "An array of key-value pairs to apply to this resource.", | ||
"insertionOrder" : false, | ||
"type" : "array", | ||
"uniqueItems" : false, | ||
"items" : { | ||
"$ref" : "#/definitions/Tags" | ||
} | ||
} | ||
}, | ||
"definitions" : { | ||
"DynamicExtensionParameters" : { | ||
"type" : "object", | ||
"additionalProperties" : false, | ||
"properties" : { | ||
"ExtensionReference" : { | ||
"type" : "string" | ||
}, | ||
"ParameterName" : { | ||
"type" : "string" | ||
}, | ||
"ParameterValue" : { | ||
"type" : "string" | ||
} | ||
} | ||
}, | ||
"Tags" : { | ||
"type" : "object", | ||
"additionalProperties" : false, | ||
"properties" : { | ||
"Value" : { | ||
"type" : "string" | ||
}, | ||
"Key" : { | ||
"type" : "string" | ||
} | ||
"$ref" : "#/definitions/Tag" | ||
} | ||
} | ||
}, | ||
"required" : [ "DeploymentStrategyId", "ConfigurationProfileId", "EnvironmentId", "ConfigurationVersion", "ApplicationId" ], | ||
"createOnlyProperties" : [ "/properties/KmsKeyIdentifier", "/properties/DeploymentStrategyId", "/properties/ConfigurationVersion", "/properties/ApplicationId", "/properties/ConfigurationProfileId", "/properties/Tags", "/properties/EnvironmentId", "/properties/Description", "/properties/DynamicExtensionParameters" ], | ||
"primaryIdentifier" : [ "/properties/Id" ], | ||
"readOnlyProperties" : [ "/properties/Id" ] | ||
} | ||
} |
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.