Class: Aws::ServiceCatalog::Types::Principal

Inherits:
Struct
  • Object
show all
Includes:
Aws::Structure
Defined in:
lib/aws-sdk-servicecatalog/types.rb

Overview

Information about a principal.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#principal_arnString

The ARN of the principal (IAM user, role, or group). This field allows for an ARN with no ‘accountID` if the `PrincipalType` is an `IAM_PATTERN`.

Returns:

  • (String)


4160
4161
4162
4163
4164
4165
# File 'lib/aws-sdk-servicecatalog/types.rb', line 4160

class Principal < Struct.new(
  :principal_arn,
  :principal_type)
  SENSITIVE = []
  include Aws::Structure
end

#principal_typeString

The principal type. The supported value is ‘IAM` if you use a fully defined ARN, or `IAM_PATTERN` if you use an ARN with no `accountID`.

Returns:

  • (String)


4160
4161
4162
4163
4164
4165
# File 'lib/aws-sdk-servicecatalog/types.rb', line 4160

class Principal < Struct.new(
  :principal_arn,
  :principal_type)
  SENSITIVE = []
  include Aws::Structure
end