Class: Aws::CloudFormation::Types::TestTypeInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::CloudFormation::Types::TestTypeInput
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-cloudformation/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#arn ⇒ String
The Amazon Resource Name (ARN) of the extension.
-
#log_delivery_bucket ⇒ String
The S3 bucket to which CloudFormation delivers the contract test execution logs.
-
#type ⇒ String
The type of the extension to test.
-
#type_name ⇒ String
The name of the extension to test.
-
#version_id ⇒ String
The version of the extension to test.
Instance Attribute Details
#arn ⇒ String
The Amazon Resource Name (ARN) of the extension.
Conditional: You must specify ‘Arn`, or `TypeName` and `Type`.
10178 10179 10180 10181 10182 10183 10184 10185 10186 |
# File 'lib/aws-sdk-cloudformation/types.rb', line 10178 class TestTypeInput < Struct.new( :arn, :type, :type_name, :version_id, :log_delivery_bucket) SENSITIVE = [] include Aws::Structure end |
#log_delivery_bucket ⇒ String
The S3 bucket to which CloudFormation delivers the contract test execution logs.
CloudFormation delivers the logs by the time contract testing has completed and the extension has been assigned a test type status of ‘PASSED` or `FAILED`.
The user calling ‘TestType` must be able to access items in the specified S3 bucket. Specifically, the user needs the following permissions:
-
‘GetObject`
-
‘PutObject`
For more information, see [Actions, Resources, and Condition Keys for Amazon S3] in the *Identity and Access Management User Guide*.
[1]: docs.aws.amazon.com/service-authorization/latest/reference/list_amazons3.html
10178 10179 10180 10181 10182 10183 10184 10185 10186 |
# File 'lib/aws-sdk-cloudformation/types.rb', line 10178 class TestTypeInput < Struct.new( :arn, :type, :type_name, :version_id, :log_delivery_bucket) SENSITIVE = [] include Aws::Structure end |
#type ⇒ String
The type of the extension to test.
Conditional: You must specify ‘Arn`, or `TypeName` and `Type`.
10178 10179 10180 10181 10182 10183 10184 10185 10186 |
# File 'lib/aws-sdk-cloudformation/types.rb', line 10178 class TestTypeInput < Struct.new( :arn, :type, :type_name, :version_id, :log_delivery_bucket) SENSITIVE = [] include Aws::Structure end |
#type_name ⇒ String
The name of the extension to test.
Conditional: You must specify ‘Arn`, or `TypeName` and `Type`.
10178 10179 10180 10181 10182 10183 10184 10185 10186 |
# File 'lib/aws-sdk-cloudformation/types.rb', line 10178 class TestTypeInput < Struct.new( :arn, :type, :type_name, :version_id, :log_delivery_bucket) SENSITIVE = [] include Aws::Structure end |
#version_id ⇒ String
The version of the extension to test.
You can specify the version id with either ‘Arn`, or with `TypeName` and `Type`.
If you don’t specify a version, CloudFormation uses the default version of the extension in this account and Region for testing.
10178 10179 10180 10181 10182 10183 10184 10185 10186 |
# File 'lib/aws-sdk-cloudformation/types.rb', line 10178 class TestTypeInput < Struct.new( :arn, :type, :type_name, :version_id, :log_delivery_bucket) SENSITIVE = [] include Aws::Structure end |