CfnPredefinedAttributeProps
- class aws_cdk.aws_connect.CfnPredefinedAttributeProps(*, instance_arn, name, values)
Bases:
object
Properties for defining a
CfnPredefinedAttribute
.- Parameters:
instance_arn (
str
) – The Amazon Resource Name (ARN) of the instance.name (
str
) – The name of the predefined attribute.values (
Union
[IResolvable
,ValuesProperty
,Dict
[str
,Any
]]) – The values of a predefined attribute.
- See:
- ExampleMetadata:
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. from aws_cdk import aws_connect as connect cfn_predefined_attribute_props = connect.CfnPredefinedAttributeProps( instance_arn="instanceArn", name="name", values=connect.CfnPredefinedAttribute.ValuesProperty( string_list=["stringList"] ) )
Attributes
- instance_arn
The Amazon Resource Name (ARN) of the instance.
- name
The name of the predefined attribute.
- values
The values of a predefined attribute.