Class: Aws::SsmSap::Types::Resource

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-ssmsap/lib/aws-sdk-ssmsap/types.rb

Overview

The resource contains a ResourceArn and the ResourceType.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#resource_arnString

The Amazon Resource Name (ARN) of the source resource.

Example of ResourceArn: "arn:aws:ec2:us-east-1:111111111111:instance/i-abcdefgh987654321"

Returns:

  • (String)


1337
1338
1339
1340
1341
1342
# File 'gems/aws-sdk-ssmsap/lib/aws-sdk-ssmsap/types.rb', line 1337

class Resource < Struct.new(
  :resource_arn,
  :resource_type)
  SENSITIVE = []
  include Aws::Structure
end

#resource_typeString

The resource type.

Example of ResourceType: "AWS::SystemsManagerSAP::Component" or "AWS::EC2::Instance".

Returns:

  • (String)


1337
1338
1339
1340
1341
1342
# File 'gems/aws-sdk-ssmsap/lib/aws-sdk-ssmsap/types.rb', line 1337

class Resource < Struct.new(
  :resource_arn,
  :resource_type)
  SENSITIVE = []
  include Aws::Structure
end