Class: Aws::Redshift::Types::GetIdentityCenterAuthTokenRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::Redshift::Types::GetIdentityCenterAuthTokenRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-redshift/types.rb
Overview
The request parameters for GetIdentityCenterAuthToken.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#cluster_ids ⇒ Array<String>
A list of cluster identifiers that the generated token can be used with.
Instance Attribute Details
#cluster_ids ⇒ Array<String>
A list of cluster identifiers that the generated token can be used with. The token will be scoped to only allow authentication to the specified clusters.
Constraints:
-
ClusterIdsmust contain at least 1 cluster identifier. -
ClusterIdscan hold a maximum of 20 cluster identifiers. -
Cluster identifiers must be 1 to 63 characters in length.
-
The characters accepted for cluster identifiers are the following:
-
Alphanumeric characters
-
Hyphens
-
-
Cluster identifiers must start with a letter.
-
Cluster identifiers can’t end with a hyphen or contain two consecutive hyphens.
7064 7065 7066 7067 7068 |
# File 'lib/aws-sdk-redshift/types.rb', line 7064 class GetIdentityCenterAuthTokenRequest < Struct.new( :cluster_ids) SENSITIVE = [] include Aws::Structure end |