CfnConnection
- class aws_cdk.aws_events.CfnConnection(scope, id, *, authorization_type=None, auth_parameters=None, description=None, invocation_connectivity_parameters=None, kms_key_identifier=None, name=None)
- Bases: - CfnResource- Creates a connection. - A connection defines the authorization type and credentials to use for authorization with an API destination HTTP endpoint. - For more information, see Connections for endpoint targets in the Amazon EventBridge User Guide . - See:
- http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-connection.html 
- CloudformationResource:
- AWS::Events::Connection 
- 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_events as events cfn_connection = events.CfnConnection(self, "MyCfnConnection", authorization_type="authorizationType", auth_parameters=events.CfnConnection.AuthParametersProperty( api_key_auth_parameters=events.CfnConnection.ApiKeyAuthParametersProperty( api_key_name="apiKeyName", api_key_value="apiKeyValue" ), basic_auth_parameters=events.CfnConnection.BasicAuthParametersProperty( password="password", username="username" ), connectivity_parameters=events.CfnConnection.ConnectivityParametersProperty( resource_parameters=events.CfnConnection.ResourceParametersProperty( resource_configuration_arn="resourceConfigurationArn", # the properties below are optional resource_association_arn="resourceAssociationArn" ) ), invocation_http_parameters=events.CfnConnection.ConnectionHttpParametersProperty( body_parameters=[events.CfnConnection.ParameterProperty( key="key", value="value", # the properties below are optional is_value_secret=False )], header_parameters=[events.CfnConnection.ParameterProperty( key="key", value="value", # the properties below are optional is_value_secret=False )], query_string_parameters=[events.CfnConnection.ParameterProperty( key="key", value="value", # the properties below are optional is_value_secret=False )] ), o_auth_parameters=events.CfnConnection.OAuthParametersProperty( authorization_endpoint="authorizationEndpoint", client_parameters=events.CfnConnection.ClientParametersProperty( client_id="clientId", client_secret="clientSecret" ), http_method="httpMethod", # the properties below are optional o_auth_http_parameters=events.CfnConnection.ConnectionHttpParametersProperty( body_parameters=[events.CfnConnection.ParameterProperty( key="key", value="value", # the properties below are optional is_value_secret=False )], header_parameters=[events.CfnConnection.ParameterProperty( key="key", value="value", # the properties below are optional is_value_secret=False )], query_string_parameters=[events.CfnConnection.ParameterProperty( key="key", value="value", # the properties below are optional is_value_secret=False )] ) ) ), description="description", invocation_connectivity_parameters=events.CfnConnection.InvocationConnectivityParametersProperty( resource_parameters=events.CfnConnection.ResourceParametersProperty( resource_configuration_arn="resourceConfigurationArn", # the properties below are optional resource_association_arn="resourceAssociationArn" ) ), kms_key_identifier="kmsKeyIdentifier", name="name" ) - Parameters:
- scope ( - Construct) – Scope in which this resource is defined.
- id ( - str) – Construct identifier for this resource (unique in its scope).
- authorization_type ( - Optional[- str]) – The type of authorization to use for the connection. .. epigraph:: OAUTH tokens are refreshed when a 401 or 407 response is returned.
- auth_parameters ( - Union[- IResolvable,- AuthParametersProperty,- Dict[- str,- Any],- None]) – The authorization parameters to use to authorize with the endpoint. You must include only authorization parameters for the- AuthorizationTypeyou specify.
- description ( - Optional[- str]) – A description for the connection to create.
- invocation_connectivity_parameters ( - Union[- IResolvable,- InvocationConnectivityParametersProperty,- Dict[- str,- Any],- None]) – For connections to private APIs, the parameters to use for invoking the API. For more information, see Connecting to private APIs in the Amazon EventBridge User Guide .
- kms_key_identifier ( - Optional[- str]) – The identifier of the AWS KMS customer managed key for EventBridge to use, if you choose to use a customer managed key to encrypt this connection. The identifier can be the key Amazon Resource Name (ARN), KeyId, key alias, or key alias ARN. If you do not specify a customer managed key identifier, EventBridge uses an AWS owned key to encrypt the connection. For more information, see Identify and view keys in the AWS Key Management Service Developer Guide .
- name ( - Optional[- str]) – The name for the connection to create.
 
 - Methods - add_deletion_override(path)
- Syntactic sugar for - addOverride(path, undefined).- Parameters:
- path ( - str) – The path of the value to delete.
- Return type:
- None
 
 - add_dependency(target)
- Indicates that this resource depends on another resource and cannot be provisioned unless the other resource has been successfully provisioned. - This can be used for resources across stacks (or nested stack) boundaries and the dependency will automatically be transferred to the relevant scope. - Parameters:
- target ( - CfnResource)
- Return type:
- None
 
 - add_depends_on(target)
- (deprecated) Indicates that this resource depends on another resource and cannot be provisioned unless the other resource has been successfully provisioned. - Parameters:
- target ( - CfnResource)
- Deprecated:
- use addDependency 
- Stability:
- deprecated 
- Return type:
- None
 
 - add_metadata(key, value)
- Add a value to the CloudFormation Resource Metadata. - Parameters:
- key ( - str)
- value ( - Any)
 
- See:
- Return type:
- None
 - Note that this is a different set of metadata from CDK node metadata; this metadata ends up in the stack template under the resource, whereas CDK node metadata ends up in the Cloud Assembly. 
 - add_override(path, value)
- Adds an override to the synthesized CloudFormation resource. - To add a property override, either use - addPropertyOverrideor prefix- pathwith “Properties.” (i.e.- Properties.TopicName).- If the override is nested, separate each nested level using a dot (.) in the path parameter. If there is an array as part of the nesting, specify the index in the path. - To include a literal - .in the property name, prefix with a- \. In most programming languages you will need to write this as- "\\."because the- \itself will need to be escaped.- For example: - cfn_resource.add_override("Properties.GlobalSecondaryIndexes.0.Projection.NonKeyAttributes", ["myattribute"]) cfn_resource.add_override("Properties.GlobalSecondaryIndexes.1.ProjectionType", "INCLUDE") - would add the overrides Example: - "Properties": { "GlobalSecondaryIndexes": [ { "Projection": { "NonKeyAttributes": [ "myattribute" ] ... } ... }, { "ProjectionType": "INCLUDE" ... }, ] ... } - The - valueargument to- addOverridewill not be processed or translated in any way. Pass raw JSON values in here with the correct capitalization for CloudFormation. If you pass CDK classes or structs, they will be rendered with lowercased key names, and CloudFormation will reject the template.- Parameters:
- path ( - str) –- The path of the property, you can use dot notation to override values in complex types. Any intermediate keys will be created as needed. 
 
- value ( - Any) –- The value. Could be primitive or complex. 
 
 
- Return type:
- None
 
 - add_property_deletion_override(property_path)
- Adds an override that deletes the value of a property from the resource definition. - Parameters:
- property_path ( - str) – The path to the property.
- Return type:
- None
 
 - add_property_override(property_path, value)
- Adds an override to a resource property. - Syntactic sugar for - addOverride("Properties.<...>", value).- Parameters:
- property_path ( - str) – The path of the property.
- value ( - Any) – The value.
 
- Return type:
- None
 
 - apply_removal_policy(policy=None, *, apply_to_update_replace_policy=None, default=None)
- Sets the deletion policy of the resource based on the removal policy specified. - The Removal Policy controls what happens to this resource when it stops being managed by CloudFormation, either because you’ve removed it from the CDK application or because you’ve made a change that requires the resource to be replaced. - The resource can be deleted ( - RemovalPolicy.DESTROY), or left in your AWS account for data recovery and cleanup later (- RemovalPolicy.RETAIN). In some cases, a snapshot can be taken of the resource prior to deletion (- RemovalPolicy.SNAPSHOT). A list of resources that support this policy can be found in the following link:- Parameters:
- policy ( - Optional[- RemovalPolicy])
- apply_to_update_replace_policy ( - Optional[- bool]) – Apply the same deletion policy to the resource’s “UpdateReplacePolicy”. Default: true
- default ( - Optional[- RemovalPolicy]) – The default policy to apply in case the removal policy is not defined. Default: - Default value is resource specific. To determine the default value for a resource, please consult that specific resource’s documentation.
 
- See:
- Return type:
- None
 
 - get_att(attribute_name, type_hint=None)
- Returns a token for an runtime attribute of this resource. - Ideally, use generated attribute accessors (e.g. - resource.arn), but this can be used for future compatibility in case there is no generated attribute.- Parameters:
- attribute_name ( - str) – The name of the attribute.
- type_hint ( - Optional[- ResolutionTypeHint])
 
- Return type:
 
 - get_metadata(key)
- Retrieve a value value from the CloudFormation Resource Metadata. - Parameters:
- key ( - str)
- See:
- Return type:
- Any
 - Note that this is a different set of metadata from CDK node metadata; this metadata ends up in the stack template under the resource, whereas CDK node metadata ends up in the Cloud Assembly. 
 - inspect(inspector)
- Examines the CloudFormation resource and discloses attributes. - Parameters:
- inspector ( - TreeInspector) – tree inspector to collect and process attributes.
- Return type:
- None
 
 - obtain_dependencies()
- Retrieves an array of resources this resource depends on. - This assembles dependencies on resources across stacks (including nested stacks) automatically. - Return type:
- List[- Union[- Stack,- CfnResource]]
 
 - obtain_resource_dependencies()
- Get a shallow copy of dependencies between this resource and other resources in the same stack. - Return type:
- List[- CfnResource]
 
 - override_logical_id(new_logical_id)
- Overrides the auto-generated logical ID with a specific ID. - Parameters:
- new_logical_id ( - str) – The new logical ID to use for this stack element.
- Return type:
- None
 
 - remove_dependency(target)
- Indicates that this resource no longer depends on another resource. - This can be used for resources across stacks (including nested stacks) and the dependency will automatically be removed from the relevant scope. - Parameters:
- target ( - CfnResource)
- Return type:
- None
 
 - replace_dependency(target, new_target)
- Replaces one dependency with another. - Parameters:
- target ( - CfnResource) – The dependency to replace.
- new_target ( - CfnResource) – The new dependency to add.
 
- Return type:
- None
 
 - to_string()
- Returns a string representation of this construct. - Return type:
- str
- Returns:
- a string representation of this resource 
 
 - Attributes - CFN_RESOURCE_TYPE_NAME = 'AWS::Events::Connection'
 - attr_arn
- The ARN of the connection that was created by the request. - CloudformationAttribute:
- Arn 
 
 - attr_arn_for_policy
- Returns the Amazon Resource Name (ARN) of a connection in resource format, so it can be used in the - Resourceelement of IAM permission policy statements.- For more information, see Resource types defined by Amazon EventBridge in the Service Authorization Reference . - For example, the following resource defines an IAM policy that grants permission to update a specific connection. - Resources: ExamplePolicy: Type: AWS::IAM::Policy Properties: PolicyName: ExamplePolicy PolicyDocument: Version: '2012-10-17' Statement: - Effect: Allow Action: - events:UpdateConnection Resource: - !GetAtt myConnection.ArnForPolicy- CloudformationAttribute:
- ArnForPolicy 
 
 - attr_auth_parameters_connectivity_parameters_resource_parameters_resource_association_arn
- For connections to private APIs, the Amazon Resource Name (ARN) of the resource association EventBridge created between the connection and the private API’s resource configuration. - The value of this property is set by EventBridge . Any value you specify in your template is ignored. - CloudformationAttribute:
- AuthParameters.ConnectivityParameters.ResourceParameters.ResourceAssociationArn 
 
 - attr_invocation_connectivity_parameters_resource_parameters_resource_association_arn
- For connections to private APIs, the Amazon Resource Name (ARN) of the resource association EventBridge created between the connection and the private API’s resource configuration. - The value of this property is set by EventBridge . Any value you specify in your template is ignored. - CloudformationAttribute:
- InvocationConnectivityParameters.ResourceParameters.ResourceAssociationArn 
 
 - attr_secret_arn
- The ARN for the secret created for the connection. - CloudformationAttribute:
- SecretArn 
 
 - auth_parameters
- The authorization parameters to use to authorize with the endpoint. 
 - authorization_type
- The type of authorization to use for the connection. 
 - cfn_options
- Options for this resource, such as condition, update policy etc. 
 - cfn_resource_type
- AWS resource type. 
 - connection_ref
- A reference to a Connection resource. 
 - creation_stack
- return: - the stack trace of the point where this Resource was created from, sourced from the +metadata+ entry typed +aws:cdk:logicalId+, and with the bottom-most node +internal+ entries filtered. 
 - description
- A description for the connection to create. 
 - invocation_connectivity_parameters
- For connections to private APIs, the parameters to use for invoking the API. 
 - kms_key_identifier
- The identifier of the AWS KMS customer managed key for EventBridge to use, if you choose to use a customer managed key to encrypt this connection. 
 - logical_id
- The logical ID for this CloudFormation stack element. - The logical ID of the element is calculated from the path of the resource node in the construct tree. - To override this value, use - overrideLogicalId(newLogicalId).- Returns:
 - the logical ID as a stringified token. This value will only get resolved during synthesis. 
 - name
- The name for the connection to create. 
 - node
- The tree node. 
 - ref
- Return a string that will be resolved to a CloudFormation - { Ref }for this element.- If, by any chance, the intrinsic reference of a resource is not a string, you could coerce it to an IResolvable through - Lazy.any({ produce: resource.ref }).
 - stack
- The stack in which this element is defined. - CfnElements must be defined within a stack scope (directly or indirectly). 
 - Static Methods - classmethod from_connection_arn(scope, id, arn)
- Creates a new IConnectionRef from an ARN. - Parameters:
- scope ( - Construct)
- id ( - str)
- arn ( - str)
 
- Return type:
 
 - classmethod from_connection_name(scope, id, connection_name)
- Creates a new IConnectionRef from a connectionName. - Parameters:
- scope ( - Construct)
- id ( - str)
- connection_name ( - str)
 
- Return type:
 
 - classmethod is_cfn_element(x)
- Returns - trueif a construct is a stack element (i.e. part of the synthesized cloudformation template).- Uses duck-typing instead of - instanceofto allow stack elements from different versions of this library to be included in the same stack.- Parameters:
- x ( - Any)
- Return type:
- bool
- Returns:
- The construct as a stack element or undefined if it is not a stack element. 
 
 - classmethod is_cfn_resource(x)
- Check whether the given object is a CfnResource. - Parameters:
- x ( - Any)
- Return type:
- bool
 
 - classmethod is_construct(x)
- Checks if - xis a construct.- Use this method instead of - instanceofto properly detect- Constructinstances, even when the construct library is symlinked.- Explanation: in JavaScript, multiple copies of the - constructslibrary on disk are seen as independent, completely different libraries. As a consequence, the class- Constructin each copy of the- constructslibrary is seen as a different class, and an instance of one class will not test as- instanceofthe other class.- npm installwill not create installations like this, but users may manually symlink construct libraries together or use a monorepo tool: in those cases, multiple copies of the- constructslibrary can be accidentally installed, and- instanceofwill behave unpredictably. It is safest to avoid using- instanceof, and using this type-testing method instead.- Parameters:
- x ( - Any) – Any object.
- Return type:
- bool
- Returns:
- true if - xis an object created from a class which extends- Construct.
 
 
ApiKeyAuthParametersProperty
- class CfnConnection.ApiKeyAuthParametersProperty(*, api_key_name, api_key_value)
- Bases: - object- The API key authorization parameters for the connection. - Parameters:
- api_key_name ( - str) – The name of the API key to use for authorization.
- api_key_value ( - str) – The value for the API key to use for authorization.
 
- 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_events as events api_key_auth_parameters_property = events.CfnConnection.ApiKeyAuthParametersProperty( api_key_name="apiKeyName", api_key_value="apiKeyValue" ) - Attributes - api_key_name
- The name of the API key to use for authorization. 
 - api_key_value
- The value for the API key to use for authorization. 
 
AuthParametersProperty
- class CfnConnection.AuthParametersProperty(*, api_key_auth_parameters=None, basic_auth_parameters=None, connectivity_parameters=None, invocation_http_parameters=None, o_auth_parameters=None)
- Bases: - object- Tthe authorization parameters to use for the connection. - Parameters:
- api_key_auth_parameters ( - Union[- IResolvable,- ApiKeyAuthParametersProperty,- Dict[- str,- Any],- None]) – The API Key parameters to use for authorization.
- basic_auth_parameters ( - Union[- IResolvable,- BasicAuthParametersProperty,- Dict[- str,- Any],- None]) – The authorization parameters for Basic authorization.
- connectivity_parameters ( - Union[- IResolvable,- ConnectivityParametersProperty,- Dict[- str,- Any],- None]) – For private OAuth authentication endpoints. The parameters EventBridge uses to authenticate against the endpoint. For more information, see Authorization methods for connections in the Amazon EventBridge User Guide .
- invocation_http_parameters ( - Union[- IResolvable,- ConnectionHttpParametersProperty,- Dict[- str,- Any],- None]) – Additional parameters for the connection that are passed through with every invocation to the HTTP endpoint.
- o_auth_parameters ( - Union[- IResolvable,- OAuthParametersProperty,- Dict[- str,- Any],- None]) – The OAuth parameters to use for authorization.
 
- 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_events as events auth_parameters_property = events.CfnConnection.AuthParametersProperty( api_key_auth_parameters=events.CfnConnection.ApiKeyAuthParametersProperty( api_key_name="apiKeyName", api_key_value="apiKeyValue" ), basic_auth_parameters=events.CfnConnection.BasicAuthParametersProperty( password="password", username="username" ), connectivity_parameters=events.CfnConnection.ConnectivityParametersProperty( resource_parameters=events.CfnConnection.ResourceParametersProperty( resource_configuration_arn="resourceConfigurationArn", # the properties below are optional resource_association_arn="resourceAssociationArn" ) ), invocation_http_parameters=events.CfnConnection.ConnectionHttpParametersProperty( body_parameters=[events.CfnConnection.ParameterProperty( key="key", value="value", # the properties below are optional is_value_secret=False )], header_parameters=[events.CfnConnection.ParameterProperty( key="key", value="value", # the properties below are optional is_value_secret=False )], query_string_parameters=[events.CfnConnection.ParameterProperty( key="key", value="value", # the properties below are optional is_value_secret=False )] ), o_auth_parameters=events.CfnConnection.OAuthParametersProperty( authorization_endpoint="authorizationEndpoint", client_parameters=events.CfnConnection.ClientParametersProperty( client_id="clientId", client_secret="clientSecret" ), http_method="httpMethod", # the properties below are optional o_auth_http_parameters=events.CfnConnection.ConnectionHttpParametersProperty( body_parameters=[events.CfnConnection.ParameterProperty( key="key", value="value", # the properties below are optional is_value_secret=False )], header_parameters=[events.CfnConnection.ParameterProperty( key="key", value="value", # the properties below are optional is_value_secret=False )], query_string_parameters=[events.CfnConnection.ParameterProperty( key="key", value="value", # the properties below are optional is_value_secret=False )] ) ) ) - Attributes - api_key_auth_parameters
- The API Key parameters to use for authorization. 
 - basic_auth_parameters
- The authorization parameters for Basic authorization. 
 - connectivity_parameters
- For private OAuth authentication endpoints. The parameters EventBridge uses to authenticate against the endpoint. - For more information, see Authorization methods for connections in the Amazon EventBridge User Guide . 
 - invocation_http_parameters
- Additional parameters for the connection that are passed through with every invocation to the HTTP endpoint. 
 - o_auth_parameters
- The OAuth parameters to use for authorization. 
 
BasicAuthParametersProperty
- class CfnConnection.BasicAuthParametersProperty(*, password, username)
- Bases: - object- The Basic authorization parameters for the connection. - Parameters:
- password ( - str) – The password associated with the user name to use for Basic authorization.
- username ( - str) – The user name to use for Basic authorization.
 
- 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_events as events basic_auth_parameters_property = events.CfnConnection.BasicAuthParametersProperty( password="password", username="username" ) - Attributes - password
- The password associated with the user name to use for Basic authorization. 
 - username
- The user name to use for Basic authorization. 
 
ClientParametersProperty
- class CfnConnection.ClientParametersProperty(*, client_id, client_secret)
- Bases: - object- The OAuth authorization parameters to use for the connection. - Parameters:
- client_id ( - str) – The client ID to use for OAuth authorization.
- client_secret ( - str) – The client secret assciated with the client ID to use for OAuth authorization.
 
- 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_events as events client_parameters_property = events.CfnConnection.ClientParametersProperty( client_id="clientId", client_secret="clientSecret" ) - Attributes - client_id
- The client ID to use for OAuth authorization. 
 - client_secret
- The client secret assciated with the client ID to use for OAuth authorization. 
 
ConnectionHttpParametersProperty
- class CfnConnection.ConnectionHttpParametersProperty(*, body_parameters=None, header_parameters=None, query_string_parameters=None)
- Bases: - object- Any additional parameters for the connection. - Parameters:
- body_parameters ( - Union[- IResolvable,- Sequence[- Union[- IResolvable,- ParameterProperty,- Dict[- str,- Any]]],- None]) – Any additional body string parameters for the connection.
- header_parameters ( - Union[- IResolvable,- Sequence[- Union[- IResolvable,- ParameterProperty,- Dict[- str,- Any]]],- None]) – Any additional header parameters for the connection.
- query_string_parameters ( - Union[- IResolvable,- Sequence[- Union[- IResolvable,- ParameterProperty,- Dict[- str,- Any]]],- None]) – Any additional query string parameters for the connection.
 
- 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_events as events connection_http_parameters_property = events.CfnConnection.ConnectionHttpParametersProperty( body_parameters=[events.CfnConnection.ParameterProperty( key="key", value="value", # the properties below are optional is_value_secret=False )], header_parameters=[events.CfnConnection.ParameterProperty( key="key", value="value", # the properties below are optional is_value_secret=False )], query_string_parameters=[events.CfnConnection.ParameterProperty( key="key", value="value", # the properties below are optional is_value_secret=False )] ) - Attributes - body_parameters
- Any additional body string parameters for the connection. 
 - header_parameters
- Any additional header parameters for the connection. 
 - query_string_parameters
- Any additional query string parameters for the connection. 
 
ConnectivityParametersProperty
- class CfnConnection.ConnectivityParametersProperty(*, resource_parameters)
- Bases: - object- If you specify a private OAuth endpoint, the parameters for EventBridge to use when authenticating against the endpoint. - For more information, see Authorization methods for connections in the Amazon EventBridge User Guide . - Parameters:
- resource_parameters ( - Union[- IResolvable,- ResourceParametersProperty,- Dict[- str,- Any]]) – The parameters for EventBridge to use when invoking the resource endpoint.
- 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_events as events connectivity_parameters_property = events.CfnConnection.ConnectivityParametersProperty( resource_parameters=events.CfnConnection.ResourceParametersProperty( resource_configuration_arn="resourceConfigurationArn", # the properties below are optional resource_association_arn="resourceAssociationArn" ) ) - Attributes - resource_parameters
- The parameters for EventBridge to use when invoking the resource endpoint. 
 
InvocationConnectivityParametersProperty
- class CfnConnection.InvocationConnectivityParametersProperty(*, resource_parameters)
- Bases: - object- For connections to private APIs, the parameters to use for invoking the API. - For more information, see Connecting to private APIs in the Amazon EventBridge User Guide . - Parameters:
- resource_parameters ( - Union[- IResolvable,- ResourceParametersProperty,- Dict[- str,- Any]]) – The parameters for EventBridge to use when invoking the resource endpoint.
- 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_events as events invocation_connectivity_parameters_property = events.CfnConnection.InvocationConnectivityParametersProperty( resource_parameters=events.CfnConnection.ResourceParametersProperty( resource_configuration_arn="resourceConfigurationArn", # the properties below are optional resource_association_arn="resourceAssociationArn" ) ) - Attributes - resource_parameters
- The parameters for EventBridge to use when invoking the resource endpoint. 
 
OAuthParametersProperty
- class CfnConnection.OAuthParametersProperty(*, authorization_endpoint, client_parameters, http_method, o_auth_http_parameters=None)
- Bases: - object- Contains the OAuth authorization parameters to use for the connection. - Parameters:
- authorization_endpoint ( - str) – The URL to the authorization endpoint when OAuth is specified as the authorization type.
- client_parameters ( - Union[- IResolvable,- ClientParametersProperty,- Dict[- str,- Any]]) – The client parameters for OAuth authorization.
- http_method ( - str) – The method to use for the authorization request.
- o_auth_http_parameters ( - Union[- IResolvable,- ConnectionHttpParametersProperty,- Dict[- str,- Any],- None]) – Details about the additional parameters to use for the connection.
 
- 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_events as events o_auth_parameters_property = events.CfnConnection.OAuthParametersProperty( authorization_endpoint="authorizationEndpoint", client_parameters=events.CfnConnection.ClientParametersProperty( client_id="clientId", client_secret="clientSecret" ), http_method="httpMethod", # the properties below are optional o_auth_http_parameters=events.CfnConnection.ConnectionHttpParametersProperty( body_parameters=[events.CfnConnection.ParameterProperty( key="key", value="value", # the properties below are optional is_value_secret=False )], header_parameters=[events.CfnConnection.ParameterProperty( key="key", value="value", # the properties below are optional is_value_secret=False )], query_string_parameters=[events.CfnConnection.ParameterProperty( key="key", value="value", # the properties below are optional is_value_secret=False )] ) ) - Attributes - authorization_endpoint
- The URL to the authorization endpoint when OAuth is specified as the authorization type. 
 - client_parameters
- The client parameters for OAuth authorization. 
 - http_method
- The method to use for the authorization request. 
 - o_auth_http_parameters
- Details about the additional parameters to use for the connection. 
 
ParameterProperty
- class CfnConnection.ParameterProperty(*, key, value, is_value_secret=None)
- Bases: - object- Any additional query string parameter for the connection. - You can include up to 100 additional query string parameters per request. Each additional parameter counts towards the event payload size, which cannot exceed 64 KB. - Parameters:
- key ( - str) – The key for a query string parameter.
- value ( - str) – The value associated with the key for the query string parameter.
- is_value_secret ( - Union[- bool,- IResolvable,- None]) – Specifies whether the value is secret. Default: - true
 
- 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_events as events parameter_property = events.CfnConnection.ParameterProperty( key="key", value="value", # the properties below are optional is_value_secret=False ) - Attributes - is_value_secret
- Specifies whether the value is secret. 
 - key
- The key for a query string parameter. 
 - value
- The value associated with the key for the query string parameter. 
 
ResourceParametersProperty
- class CfnConnection.ResourceParametersProperty(*, resource_configuration_arn, resource_association_arn=None)
- Bases: - object- The parameters for EventBridge to use when invoking the resource endpoint. - Parameters:
- resource_configuration_arn ( - str) – The Amazon Resource Name (ARN) of the Amazon VPC Lattice resource configuration for the resource endpoint.
- resource_association_arn ( - Optional[- str]) – For connections to private APIs, the Amazon Resource Name (ARN) of the resource association EventBridge created between the connection and the private API’s resource configuration. .. epigraph:: The value of this property is set by EventBridge . Any value you specify in your template is ignored.
 
- 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_events as events resource_parameters_property = events.CfnConnection.ResourceParametersProperty( resource_configuration_arn="resourceConfigurationArn", # the properties below are optional resource_association_arn="resourceAssociationArn" ) - Attributes - resource_association_arn
- For connections to private APIs, the Amazon Resource Name (ARN) of the resource association EventBridge created between the connection and the private API’s resource configuration. - The value of this property is set by EventBridge . Any value you specify in your template is ignored. 
 - resource_configuration_arn
- The Amazon Resource Name (ARN) of the Amazon VPC Lattice resource configuration for the resource endpoint.