Class: Aws::STS::Types::ProvidedContext
- Inherits:
-
Struct
- Object
- Struct
- Aws::STS::Types::ProvidedContext
- Defined in:
- gems/aws-sdk-core/lib/aws-sdk-sts/types.rb
Overview
Contains information about the provided context. This includes the signed and encrypted trusted context assertion and the context provider ARN from which the trusted context assertion was generated.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#context_assertion ⇒ String
The signed and encrypted trusted context assertion generated by the context provider.
-
#provider_arn ⇒ String
The context provider ARN from which the trusted context assertion was generated.
Instance Attribute Details
#context_assertion ⇒ String
The signed and encrypted trusted context assertion generated by the context provider. The trusted context assertion is signed and encrypted by Amazon Web Services STS.
1675 1676 1677 1678 1679 1680 |
# File 'gems/aws-sdk-core/lib/aws-sdk-sts/types.rb', line 1675 class ProvidedContext < Struct.new( :provider_arn, :context_assertion) SENSITIVE = [] include Aws::Structure end |
#provider_arn ⇒ String
The context provider ARN from which the trusted context assertion was generated.
1675 1676 1677 1678 1679 1680 |
# File 'gems/aws-sdk-core/lib/aws-sdk-sts/types.rb', line 1675 class ProvidedContext < Struct.new( :provider_arn, :context_assertion) SENSITIVE = [] include Aws::Structure end |