CfnQuickConnectProps
- class aws_cdk.aws_connect.CfnQuickConnectProps(*, instance_arn, name, quick_connect_config, description=None, tags=None)
- Bases: - object- Properties for defining a - CfnQuickConnect.- Parameters:
- instance_arn ( - str) – The Amazon Resource Name (ARN) of the instance.
- name ( - str) – The name of the quick connect.
- quick_connect_config ( - Union[- IResolvable,- QuickConnectConfigProperty,- Dict[- str,- Any]]) – Contains information about the quick connect.
- description ( - Optional[- str]) – The description of the quick connect.
- tags ( - Optional[- Sequence[- Union[- CfnTag,- Dict[- str,- Any]]]]) – The tags used to organize, track, or control access for this resource. For example, { “tags”: {“key1”:”value1”, “key2”:”value2”} }.
 
- Link:
- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-connect-quickconnect.html 
- ExampleMetadata:
- fixture=_generated 
 - Example: - # The code below shows an example of how to instantiate this type. # The values are placeholders you should change. import aws_cdk.aws_connect as connect cfn_quick_connect_props = connect.CfnQuickConnectProps( instance_arn="instanceArn", name="name", quick_connect_config=connect.CfnQuickConnect.QuickConnectConfigProperty( quick_connect_type="quickConnectType", # the properties below are optional phone_config=connect.CfnQuickConnect.PhoneNumberQuickConnectConfigProperty( phone_number="phoneNumber" ), queue_config=connect.CfnQuickConnect.QueueQuickConnectConfigProperty( contact_flow_arn="contactFlowArn", queue_arn="queueArn" ), user_config=connect.CfnQuickConnect.UserQuickConnectConfigProperty( contact_flow_arn="contactFlowArn", user_arn="userArn" ) ), # the properties below are optional description="description", tags=[CfnTag( key="key", value="value" )] ) - Attributes - description
- The description of the quick connect. 
 - instance_arn
- The Amazon Resource Name (ARN) of the instance. 
 - name
- The name of the quick connect. 
 - quick_connect_config
- Contains information about the quick connect. 
 - tags
- The tags used to organize, track, or control access for this resource. - For example, { “tags”: {“key1”:”value1”, “key2”:”value2”} }.