class Amazonite::CloudFormation::TestTypeInput

Defined in:

cloudformation/test_type_input.cr

Constructors

Instance Method Summary

Constructor Detail

def self.from_xml(node : XML::Node) : self #

[View source]
def self.new(arn : String | Nil = nil, type : ThirdPartyType | Nil = nil, type_name : String | Nil = nil, version_id : String | Nil = nil, log_delivery_bucket : String | Nil = nil) #

[View source]

Instance Method Detail

def ==(other : self) #
Description copied from class Reference

Returns true if this reference is the same as other. Invokes same?.


def arn : String | Nil #

The Amazon Resource Name (ARN) of the extension.

Conditional: You must specify Arn, or TypeName and Type.


[View source]
def arn=(arn : String | Nil) #

The Amazon Resource Name (ARN) of the extension.

Conditional: You must specify Arn, or TypeName and Type.


[View source]
def hash(hasher) #
Description copied from class Reference

See Object#hash(hasher)


def log_delivery_bucket : String | Nil #

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.


[View source]
def log_delivery_bucket=(log_delivery_bucket : String | Nil) #

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.


[View source]
def to_query_params(prefix : String) : Array(Tuple(String, String)) #

[View source]
def type : ThirdPartyType | Nil #

The type of the extension to test.

Conditional: You must specify Arn, or TypeName and Type.


[View source]
def type=(type : ThirdPartyType | Nil) #

The type of the extension to test.

Conditional: You must specify Arn, or TypeName and Type.


[View source]
def type_name : String | Nil #

The name of the extension to test.

Conditional: You must specify Arn, or TypeName and Type.


[View source]
def type_name=(type_name : String | Nil) #

The name of the extension to test.

Conditional: You must specify Arn, or TypeName and Type.


[View source]
def validate! : Nil #

[View source]
def version_id : String | Nil #

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.


[View source]
def version_id=(version_id : String | Nil) #

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.


[View source]