amazonka-resource-explorer-v2-2.0: Amazon Resource Explorer SDK.
Copyright(c) 2013-2023 Brendan Hay
LicenseMozilla Public License, v. 2.0.
MaintainerBrendan Hay
Stabilityauto-generated
Portabilitynon-portable (GHC extensions)
Safe HaskellSafe-Inferred
LanguageHaskell2010

Amazonka.ResourceExplorer2.CreateIndex

Description

Turns on Amazon Web Services Resource Explorer in the Amazon Web Services Region in which you called this operation by creating an index. Resource Explorer begins discovering the resources in this Region and stores the details about the resources in the index so that they can be queried by using the Search operation. You can create only one index in a Region.

This operation creates only a local index. To promote the local index in one Amazon Web Services Region into the aggregator index for the Amazon Web Services account, use the UpdateIndexType operation. For more information, see Turning on cross-Region search by creating an aggregator index in the Amazon Web Services Resource Explorer User Guide.

For more details about what happens when you turn on Resource Explorer in an Amazon Web Services Region, see Turn on Resource Explorer to index your resources in an Amazon Web Services Region in the Amazon Web Services Resource Explorer User Guide.

If this is the first Amazon Web Services Region in which you've created an index for Resource Explorer, then this operation also creates a service-linked role in your Amazon Web Services account that allows Resource Explorer to enumerate your resources to populate the index.

  • Action: resource-explorer-2:CreateIndex

    Resource: The ARN of the index (as it will exist after the operation completes) in the Amazon Web Services Region and account in which you're trying to create the index. Use the wildcard character (*) at the end of the string to match the eventual UUID. For example, the following Resource element restricts the role or user to creating an index in only the us-east-2 Region of the specified account.

    "Resource": "arn:aws:resource-explorer-2:us-west-2:<account-id>:index/*"

    Alternatively, you can use "Resource": "*" to allow the role or user to create an index in any Region.

  • Action: iam:CreateServiceLinkedRole

    Resource: No specific resource (*).

    This permission is required only the first time you create an index to turn on Resource Explorer in the account. Resource Explorer uses this to create the service-linked role needed to index the resources in your account. Resource Explorer uses the same service-linked role for all additional indexes you create afterwards.

Synopsis

Creating a Request

data CreateIndex Source #

See: newCreateIndex smart constructor.

Constructors

CreateIndex' 

Fields

  • clientToken :: Maybe Text

    This value helps ensure idempotency. Resource Explorer uses this value to prevent the accidental creation of duplicate versions. We recommend that you generate a UUID-type value to ensure the uniqueness of your views.

  • tags :: Maybe (HashMap Text Text)

    The specified tags are attached only to the index created in this Amazon Web Services Region. The tags aren't attached to any of the resources listed in the index.

Instances

Instances details
ToJSON CreateIndex Source # 
Instance details

Defined in Amazonka.ResourceExplorer2.CreateIndex

ToHeaders CreateIndex Source # 
Instance details

Defined in Amazonka.ResourceExplorer2.CreateIndex

Methods

toHeaders :: CreateIndex -> [Header] #

ToPath CreateIndex Source # 
Instance details

Defined in Amazonka.ResourceExplorer2.CreateIndex

ToQuery CreateIndex Source # 
Instance details

Defined in Amazonka.ResourceExplorer2.CreateIndex

AWSRequest CreateIndex Source # 
Instance details

Defined in Amazonka.ResourceExplorer2.CreateIndex

Associated Types

type AWSResponse CreateIndex #

Generic CreateIndex Source # 
Instance details

Defined in Amazonka.ResourceExplorer2.CreateIndex

Associated Types

type Rep CreateIndex :: Type -> Type #

Read CreateIndex Source # 
Instance details

Defined in Amazonka.ResourceExplorer2.CreateIndex

Show CreateIndex Source # 
Instance details

Defined in Amazonka.ResourceExplorer2.CreateIndex

NFData CreateIndex Source # 
Instance details

Defined in Amazonka.ResourceExplorer2.CreateIndex

Methods

rnf :: CreateIndex -> () #

Eq CreateIndex Source # 
Instance details

Defined in Amazonka.ResourceExplorer2.CreateIndex

Hashable CreateIndex Source # 
Instance details

Defined in Amazonka.ResourceExplorer2.CreateIndex

type AWSResponse CreateIndex Source # 
Instance details

Defined in Amazonka.ResourceExplorer2.CreateIndex

type Rep CreateIndex Source # 
Instance details

Defined in Amazonka.ResourceExplorer2.CreateIndex

type Rep CreateIndex = D1 ('MetaData "CreateIndex" "Amazonka.ResourceExplorer2.CreateIndex" "amazonka-resource-explorer-v2-2.0-DYDynTzMYCcKX3QLWjH6Yt" 'False) (C1 ('MetaCons "CreateIndex'" 'PrefixI 'True) (S1 ('MetaSel ('Just "clientToken") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "tags") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe (HashMap Text Text)))))

newCreateIndex :: CreateIndex Source #

Create a value of CreateIndex with all optional fields omitted.

Use generic-lens or optics to modify other optional fields.

The following record fields are available, with the corresponding lenses provided for backwards compatibility:

$sel:clientToken:CreateIndex', createIndex_clientToken - This value helps ensure idempotency. Resource Explorer uses this value to prevent the accidental creation of duplicate versions. We recommend that you generate a UUID-type value to ensure the uniqueness of your views.

$sel:tags:CreateIndex', createIndex_tags - The specified tags are attached only to the index created in this Amazon Web Services Region. The tags aren't attached to any of the resources listed in the index.

Request Lenses

createIndex_clientToken :: Lens' CreateIndex (Maybe Text) Source #

This value helps ensure idempotency. Resource Explorer uses this value to prevent the accidental creation of duplicate versions. We recommend that you generate a UUID-type value to ensure the uniqueness of your views.

createIndex_tags :: Lens' CreateIndex (Maybe (HashMap Text Text)) Source #

The specified tags are attached only to the index created in this Amazon Web Services Region. The tags aren't attached to any of the resources listed in the index.

Destructuring the Response

data CreateIndexResponse Source #

See: newCreateIndexResponse smart constructor.

Constructors

CreateIndexResponse' 

Fields

  • arn :: Maybe Text

    The ARN of the new local index for the Region. You can reference this ARN in IAM permission policies to authorize the following operations: DeleteIndex | GetIndex | UpdateIndexType | CreateView

  • createdAt :: Maybe ISO8601

    The date and timestamp when the index was created.

  • state :: Maybe IndexState

    Indicates the current state of the index. You can check for changes to the state for asynchronous operations by calling the GetIndex operation.

    The state can remain in the CREATING or UPDATING state for several hours as Resource Explorer discovers the information about your resources and populates the index.

  • httpStatus :: Int

    The response's http status code.

Instances

Instances details
Generic CreateIndexResponse Source # 
Instance details

Defined in Amazonka.ResourceExplorer2.CreateIndex

Associated Types

type Rep CreateIndexResponse :: Type -> Type #

Read CreateIndexResponse Source # 
Instance details

Defined in Amazonka.ResourceExplorer2.CreateIndex

Show CreateIndexResponse Source # 
Instance details

Defined in Amazonka.ResourceExplorer2.CreateIndex

NFData CreateIndexResponse Source # 
Instance details

Defined in Amazonka.ResourceExplorer2.CreateIndex

Methods

rnf :: CreateIndexResponse -> () #

Eq CreateIndexResponse Source # 
Instance details

Defined in Amazonka.ResourceExplorer2.CreateIndex

type Rep CreateIndexResponse Source # 
Instance details

Defined in Amazonka.ResourceExplorer2.CreateIndex

type Rep CreateIndexResponse = D1 ('MetaData "CreateIndexResponse" "Amazonka.ResourceExplorer2.CreateIndex" "amazonka-resource-explorer-v2-2.0-DYDynTzMYCcKX3QLWjH6Yt" 'False) (C1 ('MetaCons "CreateIndexResponse'" 'PrefixI 'True) ((S1 ('MetaSel ('Just "arn") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "createdAt") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe ISO8601))) :*: (S1 ('MetaSel ('Just "state") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe IndexState)) :*: S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int))))

newCreateIndexResponse Source #

Create a value of CreateIndexResponse with all optional fields omitted.

Use generic-lens or optics to modify other optional fields.

The following record fields are available, with the corresponding lenses provided for backwards compatibility:

CreateIndexResponse, createIndexResponse_arn - The ARN of the new local index for the Region. You can reference this ARN in IAM permission policies to authorize the following operations: DeleteIndex | GetIndex | UpdateIndexType | CreateView

$sel:createdAt:CreateIndexResponse', createIndexResponse_createdAt - The date and timestamp when the index was created.

$sel:state:CreateIndexResponse', createIndexResponse_state - Indicates the current state of the index. You can check for changes to the state for asynchronous operations by calling the GetIndex operation.

The state can remain in the CREATING or UPDATING state for several hours as Resource Explorer discovers the information about your resources and populates the index.

$sel:httpStatus:CreateIndexResponse', createIndexResponse_httpStatus - The response's http status code.

Response Lenses

createIndexResponse_arn :: Lens' CreateIndexResponse (Maybe Text) Source #

The ARN of the new local index for the Region. You can reference this ARN in IAM permission policies to authorize the following operations: DeleteIndex | GetIndex | UpdateIndexType | CreateView

createIndexResponse_createdAt :: Lens' CreateIndexResponse (Maybe UTCTime) Source #

The date and timestamp when the index was created.

createIndexResponse_state :: Lens' CreateIndexResponse (Maybe IndexState) Source #

Indicates the current state of the index. You can check for changes to the state for asynchronous operations by calling the GetIndex operation.

The state can remain in the CREATING or UPDATING state for several hours as Resource Explorer discovers the information about your resources and populates the index.