Try AWS Native preview for resources not in the classic version.
aws.auditmanager.AccountRegistration
Explore with Pulumi AI
Try AWS Native preview for resources not in the classic version.
Resource for managing AWS Audit Manager Account Registration.
Example Usage
Basic Usage
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Aws = Pulumi.Aws;
return await Deployment.RunAsync(() =>
{
var example = new Aws.Auditmanager.AccountRegistration("example");
});
package main
import (
"github.com/pulumi/pulumi-aws/sdk/v6/go/aws/auditmanager"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := auditmanager.NewAccountRegistration(ctx, "example", nil)
if err != nil {
return err
}
return nil
})
}
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.aws.auditmanager.AccountRegistration;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var example = new AccountRegistration("example");
}
}
import pulumi
import pulumi_aws as aws
example = aws.auditmanager.AccountRegistration("example")
import * as pulumi from "@pulumi/pulumi";
import * as aws from "@pulumi/aws";
const example = new aws.auditmanager.AccountRegistration("example", {});
resources:
example:
type: aws:auditmanager:AccountRegistration
Deregister On Destroy
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Aws = Pulumi.Aws;
return await Deployment.RunAsync(() =>
{
var example = new Aws.Auditmanager.AccountRegistration("example", new()
{
DeregisterOnDestroy = true,
});
});
package main
import (
"github.com/pulumi/pulumi-aws/sdk/v6/go/aws/auditmanager"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := auditmanager.NewAccountRegistration(ctx, "example", &auditmanager.AccountRegistrationArgs{
DeregisterOnDestroy: pulumi.Bool(true),
})
if err != nil {
return err
}
return nil
})
}
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.aws.auditmanager.AccountRegistration;
import com.pulumi.aws.auditmanager.AccountRegistrationArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var example = new AccountRegistration("example", AccountRegistrationArgs.builder()
.deregisterOnDestroy(true)
.build());
}
}
import pulumi
import pulumi_aws as aws
example = aws.auditmanager.AccountRegistration("example", deregister_on_destroy=True)
import * as pulumi from "@pulumi/pulumi";
import * as aws from "@pulumi/aws";
const example = new aws.auditmanager.AccountRegistration("example", {deregisterOnDestroy: true});
resources:
example:
type: aws:auditmanager:AccountRegistration
properties:
deregisterOnDestroy: true
Create AccountRegistration Resource
new AccountRegistration(name: string, args?: AccountRegistrationArgs, opts?: CustomResourceOptions);
@overload
def AccountRegistration(resource_name: str,
opts: Optional[ResourceOptions] = None,
delegated_admin_account: Optional[str] = None,
deregister_on_destroy: Optional[bool] = None,
kms_key: Optional[str] = None)
@overload
def AccountRegistration(resource_name: str,
args: Optional[AccountRegistrationArgs] = None,
opts: Optional[ResourceOptions] = None)
func NewAccountRegistration(ctx *Context, name string, args *AccountRegistrationArgs, opts ...ResourceOption) (*AccountRegistration, error)
public AccountRegistration(string name, AccountRegistrationArgs? args = null, CustomResourceOptions? opts = null)
public AccountRegistration(String name, AccountRegistrationArgs args)
public AccountRegistration(String name, AccountRegistrationArgs args, CustomResourceOptions options)
type: aws:auditmanager:AccountRegistration
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args AccountRegistrationArgs
- 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 AccountRegistrationArgs
- 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 AccountRegistrationArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args AccountRegistrationArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args AccountRegistrationArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
AccountRegistration Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
The AccountRegistration resource accepts the following input properties:
- Delegated
Admin stringAccount Identifier for the delegated administrator account.
- Deregister
On boolDestroy Flag to deregister AuditManager in the account upon destruction. Defaults to
false
(ie. AuditManager will remain active in the account, even if this resource is removed).- Kms
Key string KMS key identifier.
- Delegated
Admin stringAccount Identifier for the delegated administrator account.
- Deregister
On boolDestroy Flag to deregister AuditManager in the account upon destruction. Defaults to
false
(ie. AuditManager will remain active in the account, even if this resource is removed).- Kms
Key string KMS key identifier.
- delegated
Admin StringAccount Identifier for the delegated administrator account.
- deregister
On BooleanDestroy Flag to deregister AuditManager in the account upon destruction. Defaults to
false
(ie. AuditManager will remain active in the account, even if this resource is removed).- kms
Key String KMS key identifier.
- delegated
Admin stringAccount Identifier for the delegated administrator account.
- deregister
On booleanDestroy Flag to deregister AuditManager in the account upon destruction. Defaults to
false
(ie. AuditManager will remain active in the account, even if this resource is removed).- kms
Key string KMS key identifier.
- delegated_
admin_ straccount Identifier for the delegated administrator account.
- deregister_
on_ booldestroy Flag to deregister AuditManager in the account upon destruction. Defaults to
false
(ie. AuditManager will remain active in the account, even if this resource is removed).- kms_
key str KMS key identifier.
- delegated
Admin StringAccount Identifier for the delegated administrator account.
- deregister
On BooleanDestroy Flag to deregister AuditManager in the account upon destruction. Defaults to
false
(ie. AuditManager will remain active in the account, even if this resource is removed).- kms
Key String KMS key identifier.
Outputs
All input properties are implicitly available as output properties. Additionally, the AccountRegistration resource produces the following output properties:
Look up Existing AccountRegistration Resource
Get an existing AccountRegistration 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?: AccountRegistrationState, opts?: CustomResourceOptions): AccountRegistration
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
delegated_admin_account: Optional[str] = None,
deregister_on_destroy: Optional[bool] = None,
kms_key: Optional[str] = None,
status: Optional[str] = None) -> AccountRegistration
func GetAccountRegistration(ctx *Context, name string, id IDInput, state *AccountRegistrationState, opts ...ResourceOption) (*AccountRegistration, error)
public static AccountRegistration Get(string name, Input<string> id, AccountRegistrationState? state, CustomResourceOptions? opts = null)
public static AccountRegistration get(String name, Output<String> id, AccountRegistrationState 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.
- Delegated
Admin stringAccount Identifier for the delegated administrator account.
- Deregister
On boolDestroy Flag to deregister AuditManager in the account upon destruction. Defaults to
false
(ie. AuditManager will remain active in the account, even if this resource is removed).- Kms
Key string KMS key identifier.
- Status string
Status of the account registration request.
- Delegated
Admin stringAccount Identifier for the delegated administrator account.
- Deregister
On boolDestroy Flag to deregister AuditManager in the account upon destruction. Defaults to
false
(ie. AuditManager will remain active in the account, even if this resource is removed).- Kms
Key string KMS key identifier.
- Status string
Status of the account registration request.
- delegated
Admin StringAccount Identifier for the delegated administrator account.
- deregister
On BooleanDestroy Flag to deregister AuditManager in the account upon destruction. Defaults to
false
(ie. AuditManager will remain active in the account, even if this resource is removed).- kms
Key String KMS key identifier.
- status String
Status of the account registration request.
- delegated
Admin stringAccount Identifier for the delegated administrator account.
- deregister
On booleanDestroy Flag to deregister AuditManager in the account upon destruction. Defaults to
false
(ie. AuditManager will remain active in the account, even if this resource is removed).- kms
Key string KMS key identifier.
- status string
Status of the account registration request.
- delegated_
admin_ straccount Identifier for the delegated administrator account.
- deregister_
on_ booldestroy Flag to deregister AuditManager in the account upon destruction. Defaults to
false
(ie. AuditManager will remain active in the account, even if this resource is removed).- kms_
key str KMS key identifier.
- status str
Status of the account registration request.
- delegated
Admin StringAccount Identifier for the delegated administrator account.
- deregister
On BooleanDestroy Flag to deregister AuditManager in the account upon destruction. Defaults to
false
(ie. AuditManager will remain active in the account, even if this resource is removed).- kms
Key String KMS key identifier.
- status String
Status of the account registration request.
Import
Using pulumi import
, import Audit Manager Account Registration resources using the id
. For example:
$ pulumi import aws:auditmanager/accountRegistration:AccountRegistration example us-east-1
Package Details
- Repository
- AWS Classic pulumi/pulumi-aws
- License
- Apache-2.0
- Notes
This Pulumi package is based on the
aws
Terraform Provider.
Try AWS Native preview for resources not in the classic version.