dynatrace.AutomationWorkflowAwsConnections
Explore with Pulumi AI
Create AutomationWorkflowAwsConnections Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new AutomationWorkflowAwsConnections(name: string, args: AutomationWorkflowAwsConnectionsArgs, opts?: CustomResourceOptions);
@overload
def AutomationWorkflowAwsConnections(resource_name: str,
args: AutomationWorkflowAwsConnectionsArgs,
opts: Optional[ResourceOptions] = None)
@overload
def AutomationWorkflowAwsConnections(resource_name: str,
opts: Optional[ResourceOptions] = None,
type: Optional[str] = None,
name: Optional[str] = None,
web_identity: Optional[AutomationWorkflowAwsConnectionsWebIdentityArgs] = None)
func NewAutomationWorkflowAwsConnections(ctx *Context, name string, args AutomationWorkflowAwsConnectionsArgs, opts ...ResourceOption) (*AutomationWorkflowAwsConnections, error)
public AutomationWorkflowAwsConnections(string name, AutomationWorkflowAwsConnectionsArgs args, CustomResourceOptions? opts = null)
public AutomationWorkflowAwsConnections(String name, AutomationWorkflowAwsConnectionsArgs args)
public AutomationWorkflowAwsConnections(String name, AutomationWorkflowAwsConnectionsArgs args, CustomResourceOptions options)
type: dynatrace:AutomationWorkflowAwsConnections
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args AutomationWorkflowAwsConnectionsArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args AutomationWorkflowAwsConnectionsArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args AutomationWorkflowAwsConnectionsArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args AutomationWorkflowAwsConnectionsArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args AutomationWorkflowAwsConnectionsArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var automationWorkflowAwsConnectionsResource = new Dynatrace.AutomationWorkflowAwsConnections("automationWorkflowAwsConnectionsResource", new()
{
Type = "string",
Name = "string",
WebIdentity = new Dynatrace.Inputs.AutomationWorkflowAwsConnectionsWebIdentityArgs
{
RoleArn = "string",
PolicyArns = new[]
{
"string",
},
},
});
example, err := dynatrace.NewAutomationWorkflowAwsConnections(ctx, "automationWorkflowAwsConnectionsResource", &dynatrace.AutomationWorkflowAwsConnectionsArgs{
Type: pulumi.String("string"),
Name: pulumi.String("string"),
WebIdentity: &dynatrace.AutomationWorkflowAwsConnectionsWebIdentityArgs{
RoleArn: pulumi.String("string"),
PolicyArns: pulumi.StringArray{
pulumi.String("string"),
},
},
})
var automationWorkflowAwsConnectionsResource = new AutomationWorkflowAwsConnections("automationWorkflowAwsConnectionsResource", AutomationWorkflowAwsConnectionsArgs.builder()
.type("string")
.name("string")
.webIdentity(AutomationWorkflowAwsConnectionsWebIdentityArgs.builder()
.roleArn("string")
.policyArns("string")
.build())
.build());
automation_workflow_aws_connections_resource = dynatrace.AutomationWorkflowAwsConnections("automationWorkflowAwsConnectionsResource",
type="string",
name="string",
web_identity={
"role_arn": "string",
"policy_arns": ["string"],
})
const automationWorkflowAwsConnectionsResource = new dynatrace.AutomationWorkflowAwsConnections("automationWorkflowAwsConnectionsResource", {
type: "string",
name: "string",
webIdentity: {
roleArn: "string",
policyArns: ["string"],
},
});
type: dynatrace:AutomationWorkflowAwsConnections
properties:
name: string
type: string
webIdentity:
policyArns:
- string
roleArn: string
AutomationWorkflowAwsConnections Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The AutomationWorkflowAwsConnections resource accepts the following input properties:
- Type string
- Possible Values:
WebIdentity
- Name string
- Name
- Web
Identity Pulumiverse.Dynatrace. Inputs. Automation Workflow Aws Connections Web Identity - no documentation available
- Type string
- Possible Values:
WebIdentity
- Name string
- Name
- Web
Identity AutomationWorkflow Aws Connections Web Identity Args - no documentation available
- type String
- Possible Values:
WebIdentity
- name String
- Name
- web
Identity AutomationWorkflow Aws Connections Web Identity - no documentation available
- type string
- Possible Values:
WebIdentity
- name string
- Name
- web
Identity AutomationWorkflow Aws Connections Web Identity - no documentation available
- type str
- Possible Values:
WebIdentity
- name str
- Name
- web_
identity AutomationWorkflow Aws Connections Web Identity Args - no documentation available
- type String
- Possible Values:
WebIdentity
- name String
- Name
- web
Identity Property Map - no documentation available
Outputs
All input properties are implicitly available as output properties. Additionally, the AutomationWorkflowAwsConnections resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- Id string
- The provider-assigned unique ID for this managed resource.
- id String
- The provider-assigned unique ID for this managed resource.
- id string
- The provider-assigned unique ID for this managed resource.
- id str
- The provider-assigned unique ID for this managed resource.
- id String
- The provider-assigned unique ID for this managed resource.
Look up Existing AutomationWorkflowAwsConnections Resource
Get an existing AutomationWorkflowAwsConnections resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.
public static get(name: string, id: Input<ID>, state?: AutomationWorkflowAwsConnectionsState, opts?: CustomResourceOptions): AutomationWorkflowAwsConnections
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
name: Optional[str] = None,
type: Optional[str] = None,
web_identity: Optional[AutomationWorkflowAwsConnectionsWebIdentityArgs] = None) -> AutomationWorkflowAwsConnections
func GetAutomationWorkflowAwsConnections(ctx *Context, name string, id IDInput, state *AutomationWorkflowAwsConnectionsState, opts ...ResourceOption) (*AutomationWorkflowAwsConnections, error)
public static AutomationWorkflowAwsConnections Get(string name, Input<string> id, AutomationWorkflowAwsConnectionsState? state, CustomResourceOptions? opts = null)
public static AutomationWorkflowAwsConnections get(String name, Output<String> id, AutomationWorkflowAwsConnectionsState state, CustomResourceOptions options)
Resource lookup is not supported in YAML
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- Name string
- Name
- Type string
- Possible Values:
WebIdentity
- Web
Identity Pulumiverse.Dynatrace. Inputs. Automation Workflow Aws Connections Web Identity - no documentation available
- Name string
- Name
- Type string
- Possible Values:
WebIdentity
- Web
Identity AutomationWorkflow Aws Connections Web Identity Args - no documentation available
- name String
- Name
- type String
- Possible Values:
WebIdentity
- web
Identity AutomationWorkflow Aws Connections Web Identity - no documentation available
- name string
- Name
- type string
- Possible Values:
WebIdentity
- web
Identity AutomationWorkflow Aws Connections Web Identity - no documentation available
- name str
- Name
- type str
- Possible Values:
WebIdentity
- web_
identity AutomationWorkflow Aws Connections Web Identity Args - no documentation available
- name String
- Name
- type String
- Possible Values:
WebIdentity
- web
Identity Property Map - no documentation available
Supporting Types
AutomationWorkflowAwsConnectionsWebIdentity, AutomationWorkflowAwsConnectionsWebIdentityArgs
- Role
Arn string - The ARN of the AWS role that should be assumed
- Policy
Arns List<string> - An optional list of policies that can be used to restrict the AWS role
- Role
Arn string - The ARN of the AWS role that should be assumed
- Policy
Arns []string - An optional list of policies that can be used to restrict the AWS role
- role
Arn String - The ARN of the AWS role that should be assumed
- policy
Arns List<String> - An optional list of policies that can be used to restrict the AWS role
- role
Arn string - The ARN of the AWS role that should be assumed
- policy
Arns string[] - An optional list of policies that can be used to restrict the AWS role
- role_
arn str - The ARN of the AWS role that should be assumed
- policy_
arns Sequence[str] - An optional list of policies that can be used to restrict the AWS role
- role
Arn String - The ARN of the AWS role that should be assumed
- policy
Arns List<String> - An optional list of policies that can be used to restrict the AWS role
Package Details
- Repository
- dynatrace pulumiverse/pulumi-dynatrace
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
dynatrace
Terraform Provider.